home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’95 / NetFractal™ / Fractal 8 source / SenderSetup.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-06-24  |  254 b   |  20 lines  |  [TEXT/MMCC]

  1. #pragma once
  2.  
  3. struct DataDesc {
  4.     long rowBytes;
  5.     long rowSize;
  6.     long numRows;
  7.     long xPos;
  8.     long yPos;
  9.     unsigned char data[1500];        // actually more...
  10. };
  11.  
  12.  
  13. extern "C" {
  14.     void InitSender();
  15.     void CleanUpSender();
  16.     void SpawnSender();
  17.     void BlastData();
  18. }
  19.  
  20.